Namespace ASPNETByExample.Chapter12 Public Class HelloWorldVB Inherits System.Web.UI.Control Protected Overrides Sub Render(htwOutput As System.Web.UI.HtmlTextWriter) htwOutput.Write("Hello World") End Sub End Class End Namespace